home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / Internet Explorer 10 / IE10-Windows6.1-x86-fr-fr.exe / 1036 / TASKSCHEDULEFILE / 5002
Extensible Markup Language  |  2013-03-29  |  5KB  |  55 lines

  1.  ■<?xml version="1.0" encoding="UTF-16"?>
  2. <Task version="1.3" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
  3.   <RegistrationInfo>
  4.     <Author>Windows Internet Explorer 10 Setup utility</Author>
  5.     <Description>Removes previously installed versions of Internet Explorer 10.</Description>
  6.   </RegistrationInfo>
  7.   <Triggers>
  8.     <!-- This second trigger is used if the user needs to reboot -->
  9.     <LogonTrigger id="Internet Explorer Cleanup at Logon Trigger">
  10.       <Enabled>true</Enabled>
  11.       <Delay>PT5M</Delay>
  12.     </LogonTrigger>
  13.   </Triggers>
  14.   <Principals>
  15.     <Principal id="Author">
  16.       <!-- Only launch if the user is in the administrators group -->
  17.       <GroupId>S-1-5-32-544</GroupId>
  18.       <!-- We need elevation to be able to make these changes -->
  19.       <RunLevel>HighestAvailable</RunLevel>
  20.     </Principal>
  21.   </Principals>
  22.   <Settings>
  23.     <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
  24.     <!-- Our clean up is pretty small so go ahead and run it on battery power. -->
  25.     <DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
  26.     <StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
  27.     <AllowHardTerminate>false</AllowHardTerminate>
  28.     <StartWhenAvailable>true</StartWhenAvailable>
  29.     <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
  30.     <IdleSettings>
  31.       <StopOnIdleEnd>false</StopOnIdleEnd>
  32.       <RestartOnIdle>false</RestartOnIdle>
  33.     </IdleSettings>
  34.     <!-- Allow the user to run this manually from the Task Scheduler -->
  35.     <AllowStartOnDemand>true</AllowStartOnDemand>
  36.     <Enabled>true</Enabled>
  37.     <Hidden>false</Hidden>
  38.     <RunOnlyIfIdle>false</RunOnlyIfIdle>
  39.     <DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
  40.     <UseUnifiedSchedulingEngine>false</UseUnifiedSchedulingEngine>
  41.     <WakeToRun>false</WakeToRun>
  42.     <!-- If for some reason we are hung for 3 days, go ahead and shut the process down -->
  43.     <ExecutionTimeLimit>P3D</ExecutionTimeLimit>
  44.     <!-- Run in a lower priority where other background tasks run -->
  45.     <Priority>7</Priority>
  46.   </Settings>
  47.   <Actions Context="Author">
  48.     <!-- We need to add an Exec operation here as a placeholder. The API won't load this 
  49.          template without it. We override this with code that generates the path dynamically.-->
  50.     <Exec>
  51.       <Command>C:\Windows\SYSTEM32\ie4uinit.EXE</Command>
  52.       <Arguments>-IECleanup</Arguments>
  53.     </Exec>
  54.   </Actions>
  55. </Task>